home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Speccy ClassiX 1998
/
Speccy ClassiX 98.iso
/
amiga_system
/
the_aminet
/
util
/
libs
/
halt.lzh
/
halt
/
makefile
< prev
next >
Wrap
Makefile
|
1995-10-06
|
507b
|
23 lines
INCLUDE = -Ignu:sources.libnix/headers
OBJS = gnu:lib/libnix/libinit.o unmount.o halt_library.o
LIBS = -lamiga
LIBFLAGS = -noixemul -nostdlib -O3 -fbaserel
all: libs:halt.library shutdown sdwarn
.c.o:
gcc $(LIBFLAGS) $(INCLUDE) $*.c -c -o $*.o
shutdown: shutdown.c
gcc -noixemul shutdown.c -o shutdown
sdwarn: sdwarn.c
gcc -noixemul sdwarn.c -o sdwarn
libs:halt.library: $(OBJS)
gcc $(LIBFLAGS) $(OBJS) -o $@ $(LIBS)
clean:
delete \#?.o libs:halt.library shutdown sdwarn